home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / fkey.cpp < prev    next >
C/C++ Source or Header  |  1999-03-17  |  3KB  |  115 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: fkey.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 02/07/1997  
  9. // Date Last Modified: 03/17/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The FKey class is used to identify objects in the database
  32. by a unique key name when an index file is used. Each key is
  33. fixed in length by the FKeyLength variable.
  34. */
  35. // ----------------------------------------------------------- //   
  36.  
  37. #include "fkey.h"
  38.  
  39. FKey::FKey(char *s)
  40. {
  41.   strncpy(key_name, s, FKeyLength); key_name[FKeyLength-1] = 0;
  42.   object_address = 0; class_id = 0; 
  43. }
  44.  
  45. FKey::FKey(char *s, int oa, int ci)
  46. {
  47.   strncpy(key_name, s, FKeyLength); key_name[FKeyLength-1] = 0;
  48.   object_address = oa;
  49.   class_id = ci;
  50. }
  51.  
  52. FKey::FKey(const FKey &s)
  53. {
  54.   Copy(s);
  55.   object_address = s.object_address;
  56.   class_id = s.class_id;
  57. }
  58.  
  59. FKey &FKey::operator=(const FKey &s)
  60. {
  61.     if(this != &s) {
  62.       Copy(s);
  63.       object_address = s.object_address;
  64.       class_id = s.class_id;
  65.     }
  66.     return *this;
  67. }
  68.  
  69. void FKey::Clear()
  70. {
  71.   for(unsigned i = 0; i < FKeyLength; i++)
  72.     key_name[i] = 0;
  73. }
  74.  
  75. int FKey::Append(char c)
  76. // Returns the position of the appended character
  77. {
  78.   int pos = 0;
  79.   for(int i = 0; key_name[i] != '\0'; i++) 
  80.       pos++;
  81.  
  82.   if(pos == FKeyLength) return FKeyLength; // At the end of the string
  83.  
  84.   key_name[pos] = c;
  85.   key_name[++pos] = '\0'; // Ensure the last byte is null
  86.   return pos;
  87. }
  88.  
  89. void FKey::Copy(const FKey &s)
  90. {
  91.   Clear();
  92.   strcpy(key_name, s.key_name);
  93. }
  94.  
  95. char *FKey::c_str()
  96. {
  97.   char *buf = new char[FKeyLength+1];
  98.   buf[FKeyLength] = '\0';
  99.   memcpy(buf, key_name, FKeyLength);
  100.   return buf;
  101. }
  102.  
  103. char *FKey::c_str() const
  104. {
  105.   char *buf = new char[FKeyLength+1];
  106.   buf[FKeyLength] = '\0';
  107.   memcpy(buf, key_name, FKeyLength);
  108.   return buf;
  109. }
  110. // ----------------------------------------------------------- // 
  111. // ------------------------------- //
  112. // --------- End of File --------- //
  113. // ------------------------------- //
  114.  
  115.